home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / bug / initramfs-tools / script
Encoding:
Text File  |  2006-12-21  |  262 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. exec >&3
  4.  
  5. echo "-- /proc/cmdline"
  6. cat /proc/cmdline
  7. echo
  8.  
  9. echo "-- /proc/filesystems"
  10. grep -v nodev /proc/filesystems
  11. echo
  12.  
  13. echo "-- lsmod"
  14. lsmod
  15. echo
  16.  
  17. if [ -r /etc/kernel-img.conf ]; then
  18.     echo "-- kernel-img.conf"
  19.     cat /etc/kernel-img.conf
  20.     echo
  21. fi
  22.